home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / developer-tools / aros / source / exec / resident / src / initresident.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-16  |  774 b   |  49 lines

  1. /*
  2.     $Id$
  3.     $Log$
  4.     Desc:
  5.     Lang: english
  6. */
  7. #include "exec_intern.h"
  8.  
  9. /*****************************************************************************
  10.  
  11.     NAME */
  12.     #include <clib/exec_protos.h>
  13.  
  14.     __AROS_LH2(APTR, InitResident,
  15.  
  16. /*  SYNOPSIS */
  17.     __AROS_LA(struct Resident *, resident, A1),
  18.     __AROS_LA(unsigned long    , segList, D1),
  19.  
  20. /*  LOCATION */
  21.     struct ExecBase *, SysBase, 17, Exec)
  22.  
  23. /*  FUNCTION
  24.  
  25.     INPUTS
  26.  
  27.     RESULT
  28.  
  29.     NOTES
  30.  
  31.     EXAMPLE
  32.  
  33.     BUGS
  34.  
  35.     SEE ALSO
  36.  
  37.     INTERNALS
  38.  
  39.     HISTORY
  40.     29-10-95    digulla automatically created from
  41.                 exec_lib.fd and clib/exec_protos.h
  42.  
  43. *****************************************************************************/
  44. {
  45.     __AROS_BASE_EXT_DECL(struct ExecBase *,SysBase)
  46.  
  47.     return NULL;
  48. } /* InitResident */
  49.